home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / progjrn / pj_7_2.arc / PMDEV1.ARC / PMAUX next >
Text File  |  1988-12-04  |  958b  |  42 lines

  1. # Make file for PMAUX, a simple debugging window for Presentation Manager
  2. #
  3. # Written by William S. Hall
  4. # 3665  Benton Street, #66
  5. # Santa Clara, CA 95051
  6. #
  7.  
  8. # no debug compile macro
  9. cp=cl -c -W3 -AM -G2sw -Os -Zpe -I$(ttydir)
  10.  
  11. # libraries
  12. LIBS=os2 mlibcp libh /NOD
  13.  
  14. # ttycls directory
  15. ttydir=\pwcommon\ttycls
  16.  
  17. #headers
  18. headers=pmaux.h $(ttydir)\ttycls.h
  19.  
  20. # inference rule for resources
  21. .rc.res :
  22.     rc -r $*.rc
  23.  
  24. # Dependencies
  25. pmaux.res : pmaux.rc pmaux.h
  26.  
  27. pmaux.obj : pmaux.c $(headers)
  28.     $(cp) -NT _PMAUXRS pmaux.c
  29.  
  30. pmauxfn.obj : pmauxfn.c $(headers)
  31.     $(cp) -NT _PMAUXRS pmauxfn.c
  32.  
  33. pmauxnt.obj : pmauxnt.c $(headers)
  34.     $(cp) -NT _PMAUXNT pmauxnt.c
  35.  
  36. ttycls.obj : $(ttydir)\ttycls.c $(ttydir)\ttycls.h
  37.     $(cp) -NT _PMAUXRS $(ttydir)\ttycls.c
  38.  
  39. pmaux.exe : pmaux.def pmaux.res pmaux.obj pmauxnt.obj pmauxfn.obj ttycls.obj
  40.     link pmaux pmauxfn pmauxnt ttycls,/align:16,/map,$(LIBS),pmaux
  41.     rc pmaux.res
  42.